跳到主要内容

C++ 类型别名

传统的方法:使用关键字 typedef,如

typedef double wages;

新标准:使用别名声明:

using SI = Sales_item;